home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / PSK.ZIP / DATETIME.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-10  |  409 b   |  26 lines

  1. /*
  2.     datetime.H
  3.  
  4.     Date & Time Tools Header File
  5.  
  6.     Copyright (C) 1992, Geoff Friesen B.Sc.
  7.     All rights reserved.
  8.  
  9.     Borland C++ 3.1
  10. */
  11.  
  12. #ifdef __cplusplus
  13. extern "C"
  14. {
  15. #endif
  16.  
  17. void    datei    (char *date);
  18. void    datex    (char *date, int *year, int *month, int *day);
  19. int    doy    (char *date);
  20. int    fday    (int year, int month);
  21. int    isleap    (int year);
  22. int    ndays    (int month);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif